(Info-follow-nearest-node): Omit 4th arg to Info-get-token.
authorRichard M. Stallman <rms@gnu.org>
Wed, 26 May 1993 18:57:54 +0000 (18:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 26 May 1993 18:57:54 +0000 (18:57 +0000)
lisp/info.el

index 8efe8e2802d9f5db40a655f72780c11d7d5aff7b..914e35fe26780dd341e3e1731eaac5b0dbbef449 100644 (file)
@@ -1075,19 +1075,19 @@ At end of the node's text, moves to the next node."
     (goto-char pos))
   (let (node)
     (cond
-     ((setq node (Info-get-token (point) "\\*note[ \n]" "\\*note[ \n]\\([^:]*\\):" t))
+     ((setq node (Info-get-token (point) "\\*note[ \n]" "\\*note[ \n]\\([^:]*\\):"))
       (Info-follow-reference node))
-     ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::" t))
+     ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::"))
       (Info-goto-node node))
-     ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):" t))
+     ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):"))
       (Info-menu node))
-     ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)" t))
+     ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)"))
       (Info-goto-node node))
-     ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)" t))
+     ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)"))
       (Info-goto-node node))
-     ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)" t))
+     ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)"))
       (Info-goto-node "Top"))
-     ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)" t))
+     ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)"))
       (Info-goto-node node))
      ((save-excursion (forward-line 1) (eobp))
       (Info-next)))
@@ -1151,7 +1151,7 @@ topics.  Info has commands to follow the references and show you other nodes.
 
 Selecting other nodes:
 \\[Info-next]  Move to the \"next\" node of this node.
-\\[Info-previous]      Move to the \"previous\" node of this node.
+\\[Info-prev]  Move to the \"previous\" node of this node.
 \\[Info-up]    Move \"up\" from this node.
 \\[Info-menu]  Pick menu item specified by name (or abbreviation).
        Picking a menu item causes another node to be selected.